  /* ═══ JUSTICE HERO — TEAL ═══ */
        .legal-hero {
            position: relative;
            padding: 72px 48px 56px;
            border-radius: 28px;
            overflow: hidden;
            margin-bottom: 56px;
            background: linear-gradient(160deg, #04101a 0%, #061a20 30%, #082420 60%, #04101a 100%);
            border: 1px solid rgba(20, 184, 166, 0.12);
        }
        .legal-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(400px circle at 20% 30%, rgba(20, 184, 166, 0.1), transparent),
                radial-gradient(300px circle at 80% 60%, rgba(6, 182, 212, 0.07), transparent),
                radial-gradient(200px circle at 50% 80%, rgba(45, 212, 191, 0.05), transparent);
            pointer-events: none;
        }
        .legal-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 5%, rgba(20, 184, 166, 0.5) 30%, rgba(6, 182, 212, 0.8) 50%, rgba(20, 184, 166, 0.5) 70%, transparent 95%);
        }

        /* Shield decorative icon */
        .shield-icon {
            position: absolute;
            top: 32px; right: 48px;
            width: 130px; height: 130px;
            opacity: 0.06;
            animation: float-shield 8s ease-in-out infinite;
        }
        @keyframes float-shield {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(-2deg); }
        }

        .legal-hero-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(6, 182, 212, 0.08));
            border: 1px solid rgba(20, 184, 166, 0.3);
            border-radius: 24px;
            color: #5eead4;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }

        .legal-hero h1 {
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 900;
            margin: 0 0 16px 0;
            background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 25%, #2dd4bf 50%, #14b8a6 75%, #5eead4 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer-text 6s ease infinite;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }
        @keyframes shimmer-text {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .legal-hero-subtitle {
            position: relative;
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            line-height: 1.75;
            margin: 0 0 24px 0;
        }

        .legal-meta {
            position: relative;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .legal-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
        }
        .legal-meta-item svg { opacity: 0.5; }

        /* ═══ TABLE OF CONTENTS ═══ */
        .toc {
            background: rgba(6, 20, 24, 0.6);
            border: 1px solid rgba(20, 184, 166, 0.1);
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 48px;
            backdrop-filter: blur(12px);
        }
        .toc-title {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(20, 184, 166, 0.7);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 6px;
        }
        .toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        .toc-list a:hover {
            background: rgba(20, 184, 166, 0.08);
            color: #5eead4;
        }
        .toc-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            color: rgba(20, 184, 166, 0.5);
            min-width: 28px;
        }

        /* ═══ ARTICLE BODY ═══ */
        .article-body { max-width: 820px; }

        .article-body h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin: 56px 0 8px 0;
            padding-bottom: 16px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 60px; height: 3px;
            background: linear-gradient(90deg, #14b8a6, rgba(20, 184, 166, 0.2));
            border-radius: 3px;
        }
        .article-body h2:first-of-type { margin-top: 0; }

        .section-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.08));
            border: 1px solid rgba(20, 184, 166, 0.2);
            flex-shrink: 0;
        }
        .section-icon svg { width: 18px; height: 18px; color: #2dd4bf; }

        .article-body p, .article-body li {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.85;
            margin: 0 0 14px 0;
        }
        .article-body strong { color: rgba(255, 255, 255, 0.9); }
        .article-body a { color: #2dd4bf; text-decoration: none; border-bottom: 1px solid rgba(45, 212, 191, 0.3); transition: all 0.2s; }
        .article-body a:hover { color: #5eead4; border-bottom-color: #5eead4; }

        /* ═══ LEGAL CLAUSES ═══ */
        .legal-clause {
            position: relative;
            background: rgba(4, 12, 18, 0.7);
            border: 1px solid rgba(20, 184, 166, 0.08);
            border-left: 3px solid rgba(20, 184, 166, 0.3);
            border-radius: 14px;
            padding: 20px 24px;
            margin: 14px 0;
            transition: all 0.3s ease;
        }
        .legal-clause:hover {
            border-left-color: #14b8a6;
            background: rgba(6, 18, 24, 0.8);
            transform: translateX(4px);
        }
        .legal-clause-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: #2dd4bf;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .legal-clause p { margin: 0; }

        /* ═══ DEFINITIONS ═══ */
        .definitions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
            margin: 24px 0 32px;
        }
        .def-card {
            background: rgba(4, 12, 18, 0.7);
            border: 1px solid rgba(20, 184, 166, 0.1);
            border-radius: 14px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .def-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, #14b8a6, rgba(20, 184, 166, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .def-card:hover::before { opacity: 1; }
        .def-card:hover { border-color: rgba(20, 184, 166, 0.25); transform: translateY(-2px); }
        .def-term {
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #5eead4;
            margin-bottom: 6px;
        }
        .def-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
            margin: 0;
        }

        /* ═══ CALLOUT ═══ */
        .callout {
            background: rgba(4, 12, 18, 0.8);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .callout-info {
            border: 1px solid rgba(20, 184, 166, 0.15);
            border-left: 4px solid #14b8a6;
        }
        .callout-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(20, 184, 166, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }
        .callout-content h4 {
            font-family: 'Sora', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 6px 0;
        }
        .callout-content p {
            font-size: 14px !important;
            color: rgba(255, 255, 255, 0.5) !important;
            line-height: 1.7 !important;
            margin: 0 !important;
        }

        /* ═══ DIVIDER ═══ */
        hr.article-divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent 5%, rgba(20, 184, 166, 0.2) 50%, transparent 95%);
            margin: 48px 0;
        }

        /* ═══ NAV LINKS ═══ */
        .legal-nav-links {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid rgba(20, 184, 166, 0.1);
        }
        .legal-nav-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(20, 184, 166, 0.06);
            border: 1px solid rgba(20, 184, 166, 0.15);
            border-radius: 14px;
            color: #5eead4;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .legal-nav-link:hover {
            background: rgba(20, 184, 166, 0.15);
            border-color: rgba(20, 184, 166, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15);
        }
        .legal-nav-link.primary {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
            border-color: rgba(139, 92, 246, 0.3);
            color: #c4b5fd;
        }
        .legal-nav-link.primary:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
        }

        /* ═══ BACK TO TOP ═══ */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px; height: 48px;
            border-radius: 14px;
            background: rgba(20, 184, 166, 0.2);
            border: 1px solid rgba(20, 184, 166, 0.3);
            color: #5eead4;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 50;
            backdrop-filter: blur(12px);
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover {
            background: rgba(20, 184, 166, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
        }

        @media (max-width: 768px) {
            .legal-hero { padding: 48px 24px 36px; }
            .legal-hero h1 { font-size: 34px; }
            .shield-icon { display: none; }
            .toc-list { grid-template-columns: 1fr; }
            .definitions-grid { grid-template-columns: 1fr; }
            .legal-nav-links { flex-direction: column; }
            .back-to-top { bottom: 20px; right: 20px; }
        }







        /* ═══ JUSTICE HERO ═══ */
        .legal-hero {
            position: relative;
            padding: 72px 48px 56px;
            border-radius: 28px;
            overflow: hidden;
            margin-bottom: 56px;
            background: linear-gradient(160deg, #05051a 0%, #0d0a24 30%, #150d2e 60%, #0a0818 100%);
            border: 1px solid rgba(139, 92, 246, 0.12);
        }
        .legal-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(400px circle at 20% 30%, rgba(139, 92, 246, 0.12), transparent),
                radial-gradient(300px circle at 80% 60%, rgba(168, 85, 247, 0.08), transparent),
                radial-gradient(200px circle at 50% 80%, rgba(99, 102, 241, 0.06), transparent);
            pointer-events: none;
        }
        .legal-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 5%, rgba(139, 92, 246, 0.6) 30%, rgba(168, 85, 247, 0.8) 50%, rgba(139, 92, 246, 0.6) 70%, transparent 95%);
        }

        /* Scales of Justice decorative SVG */
        .justice-icon {
            position: absolute;
            top: 32px; right: 48px;
            width: 140px; height: 140px;
            opacity: 0.06;
            animation: float-justice 8s ease-in-out infinite;
        }
        @keyframes float-justice {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(2deg); }
        }

        .legal-hero-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 24px;
            color: #c4b5fd;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }

        .legal-hero h1 {
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 900;
            margin: 0 0 16px 0;
            background: linear-gradient(135deg, #e0d5ff 0%, #c4b5fd 25%, #a78bfa 50%, #818cf8 75%, #c4b5fd 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer-text 6s ease infinite;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }
        @keyframes shimmer-text {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .legal-hero-subtitle {
            position: relative;
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            line-height: 1.75;
            margin: 0 0 24px 0;
            font-weight: 400;
        }

        .legal-meta {
            position: relative;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .legal-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
        }
        .legal-meta-item svg { opacity: 0.5; }

        /* ═══ TABLE OF CONTENTS ═══ */
        .toc {
            background: rgba(10, 10, 30, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.1);
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 48px;
            backdrop-filter: blur(12px);
        }
        .toc-title {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(139, 92, 246, 0.7);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 6px;
        }
        .toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        .toc-list a:hover {
            background: rgba(139, 92, 246, 0.08);
            color: #c4b5fd;
        }
        .toc-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            color: rgba(139, 92, 246, 0.5);
            min-width: 28px;
        }

        /* ═══ ARTICLE BODY ═══ */
        .article-body { max-width: 820px; }

        .article-body h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin: 56px 0 8px 0;
            padding-bottom: 16px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 60px; height: 3px;
            background: linear-gradient(90deg, #a78bfa, rgba(139, 92, 246, 0.2));
            border-radius: 3px;
        }
        .article-body h2:first-of-type { margin-top: 0; }

        .section-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.08));
            border: 1px solid rgba(139, 92, 246, 0.2);
            flex-shrink: 0;
        }
        .section-icon svg { width: 18px; height: 18px; color: #a78bfa; }

        .article-body p, .article-body li {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.85;
            margin: 0 0 14px 0;
        }
        .article-body strong { color: rgba(255, 255, 255, 0.9); }
        .article-body a { color: #a78bfa; text-decoration: none; border-bottom: 1px solid rgba(167, 139, 250, 0.3); transition: all 0.2s; }
        .article-body a:hover { color: #c4b5fd; border-bottom-color: #c4b5fd; }

        /* ═══ LEGAL CLAUSES ═══ */
        .legal-clause {
            position: relative;
            background: rgba(8, 8, 24, 0.7);
            border: 1px solid rgba(139, 92, 246, 0.08);
            border-left: 3px solid rgba(139, 92, 246, 0.3);
            border-radius: 14px;
            padding: 20px 24px;
            margin: 14px 0;
            transition: all 0.3s ease;
        }
        .legal-clause:hover {
            border-left-color: #a78bfa;
            background: rgba(12, 10, 30, 0.8);
            transform: translateX(4px);
        }
        .legal-clause-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: #a78bfa;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .legal-clause p { margin: 0; }

        /* ═══ DEFINITIONS ═══ */
        .definitions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
            margin: 24px 0 32px;
        }
        .def-card {
            background: rgba(8, 8, 24, 0.7);
            border: 1px solid rgba(139, 92, 246, 0.1);
            border-radius: 14px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .def-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, #a78bfa, rgba(139, 92, 246, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .def-card:hover::before { opacity: 1; }
        .def-card:hover { border-color: rgba(139, 92, 246, 0.25); transform: translateY(-2px); }
        .def-term {
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #c4b5fd;
            margin-bottom: 6px;
        }
        .def-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
            margin: 0;
        }

        /* ═══ DIVIDER ═══ */
        hr.article-divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent 5%, rgba(139, 92, 246, 0.2) 50%, transparent 95%);
            margin: 48px 0;
        }

        /* ═══ AGREEMENT BANNER ═══ */
        .agreement-banner {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.05));
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .agreement-banner-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(139, 92, 246, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .agreement-banner-icon svg { color: #a78bfa; }
        .agreement-banner p {
            margin: 0 !important;
            font-size: 14px !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.7 !important;
        }

        /* ═══ NAV LINKS ═══ */
        .legal-nav-links {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }
        .legal-nav-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(139, 92, 246, 0.06);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 14px;
            color: #c4b5fd;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .legal-nav-link:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
        }
        .legal-nav-link.primary {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
            border-color: rgba(139, 92, 246, 0.35);
            color: #e0d5ff;
        }

        /* ═══ BACK TO TOP ═══ */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px; height: 48px;
            border-radius: 14px;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #c4b5fd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 50;
            backdrop-filter: blur(12px);
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover {
            background: rgba(139, 92, 246, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        @media (max-width: 768px) {
            .legal-hero { padding: 48px 24px 36px; }
            .legal-hero h1 { font-size: 34px; }
            .justice-icon { display: none; }
            .toc-list { grid-template-columns: 1fr; }
            .definitions-grid { grid-template-columns: 1fr; }
            .legal-nav-links { flex-direction: column; }
            .back-to-top { bottom: 20px; right: 20px; }
        }